home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / stasplit / staspdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.1 KB  |  46 lines

  1. // staspdoc.h : interface of the CStaticSplitDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CStaticSplitDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CStaticSplitDoc();
  9.     DECLARE_DYNCREATE(CStaticSplitDoc)
  10.  
  11. // Attributes
  12. public:
  13.     CStringArray m_arstrPoem;
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CStaticSplitDoc)
  21.     public:
  22.     virtual BOOL OnNewDocument();
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CStaticSplitDoc();
  28.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.  
  34. protected:
  35.  
  36. // Generated message map functions
  37. protected:
  38.     //{{AFX_MSG(CStaticSplitDoc)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.         //    DO NOT EDIT what you see in these blocks of generated code !
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.